47 |
How can I prevent grouping by a specified column
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.DataColumns.Item("Freight").AllowGroupBy = 0 |
46 |
How can I sort alphabetically the columns to be displayed in the context menu/floating panel
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotBarVisible = 69595 'exPivotBarContextSortAscending + exPivotBarAllowResizeColumns + exPivotBarAllowUndoRedo + exPivotBarAutoUpdate + exPivotBarAllowFormatContent + exPivotBarAllowFormatAppearance + exPivotBarAllowValues + exPivotBarShowTotals + exPivotBarAutoFit + exPivotBarSizable + exPivotBarVisible oPivot.PivotColumnsSortOrder = 1 oPivot.PivotColumnsFloatBarVisible = .t. |
45 |
How can I prevent dropping data to the control
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.AllowDrop = .f. |
44 |
Is it possible to allow incremental filtering on drop down filter window too, as I can on the control menus
|
43 |
How can I prevent showing the Filter For field in the drop down filter window
|
42 |
How can I display the numeric columns only when selecting a new aggregate, like SUM
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotRows = "0[bold]" oPivot.PivotColumns = "sum(5)/12,count(5)/12" oPivot.DataColumns.Item("Freight").SortType = 1 |
41 |
How can I add a value column
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotRows = "0" oPivot.PivotColumns = "sum(5)/12" |
40 |
I would like to always have the subtotals in the same row of the "father row". Could that be done
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotRows = "0[bold],2" oPivot.PivotColumns = "sum(5)/12,count(5)/12" oPivot.ShowViewCompact = 35 'exViewCompactAggregates + exViewCompact oPivot.PivotTotals = "/sum,sum(0)" |
39 |
Is there any way, when I change the filter of the column, it broadcast the filter to the other pivot columns that were duplicated
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotRows = "0,2" oPivot.ShowBranchRows = 2 oPivot.PivotColumns = "sum(5)/12[filter='gBpNxjNh1MhlBoKNhpOZ0hJVNxpOhlMggKBhMZrMJnMoAgI='],count(5)/12[filter='gBpNxjNh1MhlBoKNhpOZ0hJVNxpOhlMggKBhMZrMJnMoAgI=']" oPivot.ShowViewCompact = 19 'exViewCompactKeepSettings + exViewCompact |
38 |
How can I summarize more fields in the same cell
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotRows = "0,2" oPivot.ShowBranchRows = 2 oPivot.PivotColumns = "sum(5)/12,count(5)/12" oPivot.ShowViewCompact = 3 |
37 |
How do I programmatically group by rows, in a compact way, no hierarchy lines
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotRows = "0,2" oPivot.ShowBranchRows = 2 |
36 |
How do I programmatically group by rows
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotRows = "0,1,2" oPivot.LinesAtRoot = -1 oPivot.HasLines = 1 |
35 |
How do I programmatically group by columns
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotRows = "0" oPivot.PivotColumns = "sum(5)/12;6" |
34 |
How can I hide the add new button on the pivot bar
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotBarVisible = 8155 'exPivotBarHideAddNew + exPivotBarAllowResizeColumns + exPivotBarAllowUndoRedo + exPivotBarAutoUpdate + exPivotBarAllowFormatContent + exPivotBarAllowFormatAppearance + exPivotBarAllowValues + exPivotBarShowTotals + exPivotBarAutoFit + exPivotBarSizable + exPivotBarVisible |
33 |
Is it possible to show the data that generated the result, when double clicking the row
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.BeginUpdate() oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotRows = "0[italic]" oPivot.PivotColumns = "count(0)[underline]" oPivot.PivotTotals = "count[bold,strikeout]" oPivot.ShowDataOnDblClick = .t. oPivot.EndUpdate() |
32 |
Does your control support subscript or superscript, in HTML captions
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.HeaderHeight = 22 oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.DataColumns.Item("ShipCountry").Caption = "ShipCountry<font ;7><off 6><sha ;;0>subscript" oPivot.DataColumns.Item("ShipRegion").Caption = "ShipRegion<font ;7><off -6><sha ;;0>superscript" oPivot.Refresh() |
31 |
Is it possible to define a different background color for the pivot bar
|
30 |
How can I display an icon/image to Content sub-menu
Dim oPivot as P Dim var_FormatContent as local oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") ' oPivot.FormatContents.Item("numeric").Name = "<img>1</img> Numeric" var_FormatContent = oPivot.FormatContents.Item("numeric") oPivot.TemplateDef = "dim var_FormatContent" oPivot.TemplateDef = var_FormatContent oPivot.Template = "var_FormatContent.Name = `<img>1</img> Numeric`" oPivot.PivotRows = "5[content=numeric]" |
29 |
How can I change the selection background in the control's context menu
|
28 |
How can I display the column as date in a long format
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.FormatContents.Add("longdate","longdate(date(value))") oPivot.PivotRows = "9[content=longdate]" |
27 |
Is it possible to display the column in upper-case
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.FormatContents.Add("upper","upper(value)") oPivot.PivotRows = "0[content=upper]" |
26 |
How can I programatically bold a column
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotRows = "0[bold]" |
25 |
How can I display the total with a different foreground color
Dim oPivot as P Dim var_FormatAppearance as local oPivot = topparent:CONTROL_ACTIVEX1.activex ' oPivot.FormatAppearances.Add("fore").ForeColor = 255 var_FormatAppearance = oPivot.FormatAppearances.Add("fore") oPivot.TemplateDef = "dim var_FormatAppearance" oPivot.TemplateDef = var_FormatAppearance oPivot.Template = "var_FormatAppearance.ForeColor = 255" oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotRows = "0" oPivot.PivotColumns = "sum(5)" oPivot.PivotTotals = "sum[fore,bold]" |
24 |
How can I display the total with a different background color/ebn
Dim oPivot as P Dim var_FormatAppearance as local oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") ' oPivot.FormatAppearances.Add("back").BackColor = 16777216 var_FormatAppearance = oPivot.FormatAppearances.Add("back") oPivot.TemplateDef = "dim var_FormatAppearance" oPivot.TemplateDef = var_FormatAppearance oPivot.Template = "var_FormatAppearance.BackColor = 16777216" oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotRows = "0" oPivot.PivotColumns = "sum(5)" oPivot.PivotTotals = "sum[back]" |
23 |
How can I display the total with a solid background color
Dim oPivot as P Dim var_FormatAppearance as local oPivot = topparent:CONTROL_ACTIVEX1.activex ' oPivot.FormatAppearances.Add("back").BackColor = 15790320 var_FormatAppearance = oPivot.FormatAppearances.Add("back") oPivot.TemplateDef = "dim var_FormatAppearance" oPivot.TemplateDef = var_FormatAppearance oPivot.Template = "var_FormatAppearance.BackColor = 15790320" oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotRows = "0" oPivot.PivotColumns = "sum(5)" oPivot.PivotTotals = "sum[back]" |
22 |
Is it possible to change the "bold" caption in the control's context menu
Dim oPivot as P Dim var_FormatAppearance as local oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") ' oPivot.FormatAppearances.Item("bold").Name = "Ingrosat" var_FormatAppearance = oPivot.FormatAppearances.Item("bold") oPivot.TemplateDef = "dim var_FormatAppearance" oPivot.TemplateDef = var_FormatAppearance oPivot.Template = "var_FormatAppearance.Name = `Ingrosat`" |
21 |
Is it possible to show no Exclude field in the filter window
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.DisplayFilterList = 288 'exShowCheckBox + exSortItemsAsc |
20 |
How can I prevent showing the drop down filter button
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.DisplayFilterList = 2 |
19 |
How do I get the count of positive values only
Dim oPivot as P Dim var_Aggregate as local oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") ' oPivot.Aggregates.Add("positive","sum").FormatValue = "value < 0 ? 0 : 1" var_Aggregate = oPivot.Aggregates.Add("positive","sum") oPivot.TemplateDef = "dim var_Aggregate" oPivot.TemplateDef = var_Aggregate oPivot.Template = "var_Aggregate.FormatValue = `value < 0 ? 0 : 1`" oPivot.PivotRows = "0" oPivot.PivotColumns = "positive(5)" |
18 |
How do I get the sum for negative values only
Dim oPivot as P Dim var_Aggregate as local oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") ' oPivot.Aggregates.Add("negative","sum").FormatValue = "value < 0 ? value : 0" var_Aggregate = oPivot.Aggregates.Add("negative","sum") oPivot.TemplateDef = "dim var_Aggregate" oPivot.TemplateDef = var_Aggregate oPivot.Template = "var_Aggregate.FormatValue = `value < 0 ? value : 0`" oPivot.PivotRows = "0" oPivot.PivotColumns = "negative(5)" |
17 |
My data stores the data as strings, is it possible to load the data using Import method
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("'string 1';'string 2'#'string 3';'string 4'","str=`'` eor='#' eof=';' hdr=0") |
16 |
Is it possible to load data using different separators
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("item 1;item 2#item 3;item 4","eor='#' eof=';' hdr=0") |
15 |
Is it possible to align a column
Dim oPivot as P Dim var_Column as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") var_Column = oPivot.DataColumns.Item(0) var_Column.Alignment = 2 var_Column.HeaderAlignment = 2 oPivot.Refresh() |
14 |
How can I change by code the column/rows background color
Dim oPivot as P Dim var_FormatAppearance as local oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.BeginUpdate() oPivot.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") ' oPivot.FormatAppearances.Add("aka").BackColor = 16777216 var_FormatAppearance = oPivot.FormatAppearances.Add("aka") oPivot.TemplateDef = "dim var_FormatAppearance" oPivot.TemplateDef = var_FormatAppearance oPivot.Template = "var_FormatAppearance.BackColor = 16777216" oPivot.PivotRows = "0[aka]" oPivot.EndUpdate() |
13 |
How can I apply by code any appearance to my list
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.BeginUpdate() oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotRows = "0[italic]" oPivot.PivotColumns = "count(0)[underline]" oPivot.PivotTotals = "count[bold,strikeout]" oPivot.EndUpdate() |
12 |
How can I display an icon instead SUM/Total field
Dim oPivot as P Dim var_Aggregate as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.BeginUpdate() oPivot.Images("gBJJgBggAAwAAgACEKAD/hz/EMNh8TIRNGwAjEZAEXjAojJAjIgjIBAEijUlk8plUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9oEEwGBwWDwmFw2Hw9+xUsxGNx2Px+LyUnyGVy2VyeZAGNjIJjITjIb0OjjGi0ukAAVjILzmayWtAGejCvjLh2u3jG23O4ACx1ew11+zEYGsZZsZUe/wkZ4sYZvD4PCy8kjAzjLFjKd5WDjIz6HRvnTwUZGMZX8ZTPb8XU8Hh9cFjALjKVjK5jIv9/w9t78WdjJIoyWr7sKjIWu+/a8Og2QAEajLaIxAzlwhB0DwQuzoECjJWw1DiMQ3D0OgAQMKwsuj8xOy0SrzFEWMdFUExbGMCRfC8ZRswMaLsiofJVHiOo+kKRs2lL2Jsh8cyQo6Ag==") oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") var_Aggregate = oPivot.Aggregates.Item("sum") var_Aggregate.Name = "<img>1</img> Sum" var_Aggregate.Caption = "<img>1</img>" oPivot.PivotColumnsFloatBarVisible = .t. oPivot.FormatPivotHeader = "iaggregate ? (caggregate + (iaggregate != 5 ? ' ' : '') + caption) : caption" oPivot.FormatPivotTotal = "caggregate" oPivot.PivotRows = "0" oPivot.PivotColumns = "sum(5)" oPivot.PivotTotals = "sum,count" oPivot.EndUpdate() |
11 |
How can I change the caption to be displayed when dragging an aggregate function
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.BeginUpdate() oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotColumnsFloatBarVisible = .t. oPivot.FormatPivotHeader = "(iaggregate ? ('<b>' + upper(caggregate) + '</b> of ' + caption) : caption)" oPivot.PivotRows = "0" oPivot.PivotColumns = "sum(5)" oPivot.PivotTotals = "sum,count" oPivot.EndUpdate() |
10 |
I am using Import method, just wondering if I can rename the columns
Dim oPivot as P Dim var_Column as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") var_Column = oPivot.DataColumns.Item(0) var_Column.Caption = "New Caption" var_Column.PivotCaption = "New Pivot Caption" oPivot.Refresh() |
9 |
Does your control support Fit-To-Page Print and Print Preview
Dim oPivot as P Dim var_Print as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotRows = "0,1,2" oPivot.ExpandAll() var_Print = OLE.Create("Exontrol.Print") var_Print.Options = "FitToPage = On" var_Print.PrintExts = oPivot var_Print.Preview() |
8 |
How can I print the control
Dim oPivot as P Dim var_Print as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotRows = "0,1,2" oPivot.ExpandAll() var_Print = OLE.Create("Exontrol.Print") var_Print.PrintExts = oPivot var_Print.Preview() |
7 |
How can I hide the pivot bar (hide completly)
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.PivotBarVisible = 4058 'exPivotBarAllowResizeColumns + exPivotBarAllowUndoRedo + exPivotBarAutoUpdate + exPivotBarAllowFormatContent + exPivotBarAllowFormatAppearance + exPivotBarAllowValues + exPivotBarShowTotals + exPivotBarAutoFit + exPivotBarSizable |
6 |
How can I hide the pivot bar (auto-hide)
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.PivotBarVisible = 4083 'exPivotBarAllowResizeColumns + exPivotBarAllowUndoRedo + exPivotBarAutoUpdate + exPivotBarAllowFormatContent + exPivotBarAllowFormatAppearance + exPivotBarAllowValues + exPivotBarAutoHide + exPivotBarShowTotals + exPivotBarSizable + exPivotBarVisible |
5 |
How can I count and get the total of a specified column
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.BeginUpdate() oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotColumnsFloatBarVisible = .t. oPivot.PivotRows = "0" oPivot.PivotColumns = "sum(5)" oPivot.PivotTotals = "sum,count" oPivot.EndUpdate() |
4 |
How can I add show the columns once I grouped a column
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotRows = "0" oPivot.PivotColumnsFloatBarVisible = .t. |
3 |
How can I programatically group the columns
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") oPivot.PivotRows = "0:D" |
2 |
Is it possible to load data from a data source
Dim oPivot as P Dim rs as P oPivot = topparent:CONTROL_ACTIVEX1.activex rs = OLE.Create("ADOR.Recordset") rs.Open("Data","Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Program Files\Exontrol\ExPivot\Sample\Access\sample.accdb",3,3) oPivot.DataSource = rs |
1 |
How can I load data
Dim oPivot as P oPivot = topparent:CONTROL_ACTIVEX1.activex oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt") |